home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 359 / def / xbios.def < prev   
Encoding:
Modula Definition  |  1989-01-09  |  1.1 KB  |  33 lines

  1. DEFINITION MODULE XBIOS;
  2.  
  3. (*
  4.  *  Copyright (c) 1987,1988,1989 by
  5.  *  ana-systems, Foster City, California.
  6.  *  All Rights Reserved.
  7.  *
  8.  *  This software is furnished under a license and may be used and copied
  9.  *  only  in accordance with  the  terms  of  such  license and  with the
  10.  *  inclusion of the above copyright notice.  This software or  any other
  11.  *  copies thereof may not be provided or otherwise made available to any
  12.  *  other  person.   No title to and ownership of the  software is  herby
  13.  *  transferred.
  14.  *
  15.  *  The information in this software is  subject to change without notice
  16.  *  and  should  not be construed as a commitment by ana-systems.   No
  17.  *  warranty is implied or expressed.
  18.  *)
  19.  
  20. FROM SYSTEM IMPORT ADDRESS;
  21.  
  22. EXPORT QUALIFIED FlopFmt,FlopWr,ProtoBt;
  23.  
  24. PROCEDURE FlopWr(buf:ADDRESS; filler,device,sector,track,
  25.                  side,count:INTEGER):INTEGER;
  26.  
  27. PROCEDURE FlopFmt(buf:ADDRESS; filler,device,spt,track,side,
  28.                   interleave,magic,virgin:INTEGER):INTEGER;
  29.  
  30. PROCEDURE ProtoBt(buf:ADDRESS; serialnum,disktype,execflag:INTEGER);
  31.  
  32. END XBIOS.
  33.